From 0785dcc3d282598493cbbaa95d78943f15240e5a Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Wed, 15 Oct 2014 18:33:55 +0100 Subject: [PATCH] tools/build: Fix root build target The root Makefile 'build' rule recurses into the tools directory and invokes the 'build' rule. However, the tools Makefile doesn't contain a 'build' rule, resulting in failure. Introduce a 'build' rule identical to the existing 'all' rule. Signed-off-by: Andrew Cooper CC: Ian Campbell CC: Ian Jackson CC: Wei Liu CC: Konrad Rzeszutek Wilk Acked-by: Ian Campbell --- tools/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/Makefile b/tools/Makefile index 543cd29a13..af9798a32b 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -54,8 +54,8 @@ export CROSS_SYS_ROOT # exported for check/funcs.sh export CROSS_BIN_PATH # exported for cross-install.sh endif -.PHONY: all -all: subdirs-all +.PHONY: build all +build all: subdirs-all .PHONY: install install: subdirs-install -- 2.30.2